home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 June / INTERNET104.ISO / mac / SOFTWARE / MAC / UTILS / MACSFTP / MacSFTP_Classic.sit / MacSFTP Classic / Sample Script / Sample Script
Encoding:
Text File  |  2002-01-21  |  350 b   |  10 lines  |  [TEXT/ToyS]

  1. tell application "MacSFTP Classic"
  2.     set targ to make new progress window given url:"ftp://nono@127.0.0.1"
  3.     SetTellTarget to targ
  4.     Change directory "/Users/nono/Public/"
  5.     upload file "Macintosh HD:Users:nono:Desktop:upload test"
  6.     download "upload test" new name file "Macintosh HD:Users:nono:Desktop:download test"
  7.     SetTellTarget
  8.     close targ
  9. end tell
  10.